home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zrelbit.c < prev    next >
C/C++ Source or Header  |  1997-03-04  |  7KB  |  311 lines

  1. /* Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zrelbit.c */
  20. /* Relational, boolean, and bit operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsutil.h"
  25. #include "idict.h"
  26. #include "store.h"
  27.  
  28. /* ------ Standard operators ------ */
  29.  
  30. /* Forward references */
  31. private int near obj_le(P2(os_ptr, os_ptr));
  32.  
  33. /* <obj1> <obj2> eq <bool> */
  34. private int
  35. zeq(register os_ptr op)
  36. {    register os_ptr op1 = op - 1;
  37. #define eq_check_read(opp, dflt)\
  38.   switch ( r_type(opp) )\
  39.    {    case t_string: check_read(*opp); break;\
  40.     default: dflt; break;\
  41.    }
  42.     eq_check_read(op1, check_op(2));
  43.     eq_check_read(op, DO_NOTHING);
  44.     make_bool(op1, (obj_eq(op1, op) ? 1 : 0));
  45.     pop(1);
  46.     return 0;
  47. }
  48.  
  49. /* <obj1> <obj2> ne <bool> */
  50. private int
  51. zne(register os_ptr op)
  52. {    /* We'll just be lazy and use eq. */
  53.     int code = zeq(op);
  54.     if ( !code ) op[-1].value.boolval ^= 1;
  55.     return code;
  56. }
  57.  
  58. /* <num1> <num2> ge <bool> */
  59. /* <str1> <str2> ge <bool> */
  60. private int
  61. zge(register os_ptr op)
  62. {    int code = obj_le(op, op - 1);
  63.     if ( code < 0 ) return code;
  64.     make_bool(op - 1, code);
  65.     pop(1);
  66.     return 0;
  67. }
  68.  
  69. /* <num1> <num2> gt <bool> */
  70. /* <str1> <str2> gt <bool> */
  71. private int
  72. zgt(register os_ptr op)
  73. {    int code = obj_le(op - 1, op);
  74.     if ( code < 0 ) return code;
  75.     make_bool(op - 1, code ^ 1);
  76.     pop(1);
  77.     return 0;
  78. }
  79.  
  80. /* <num1> <num2> le <bool> */
  81. /* <str1> <str2> le <bool> */
  82. private int
  83. zle(register os_ptr op)
  84. {    int code = obj_le(op - 1, op);
  85.     if ( code < 0 ) return code;
  86.     make_bool(op - 1, code);
  87.     pop(1);
  88.     return 0;
  89. }
  90.  
  91. /* <num1> <num2> lt <bool> */
  92. /* <str1> <str2> lt <bool> */
  93. private int
  94. zlt(register os_ptr op)
  95. {    int code = obj_le(op, op - 1);
  96.     if ( code < 0 ) return code;
  97.     make_bool(op - 1, code ^ 1);
  98.     pop(1);
  99.     return 0;
  100. }
  101.  
  102. /* <num1> <num2> .max <num> */
  103. /* <str1> <str2> .max <str> */
  104. private int
  105. zmax(register os_ptr op)
  106. {    int code = obj_le(op - 1, op);
  107.     if ( code < 0 ) return code;
  108.     if ( code )
  109.        {    ref_assign(op - 1, op);
  110.        }
  111.     pop(1);
  112.     return 0;
  113. }
  114.  
  115. /* <num1> <num2> .min <num> */
  116. /* <str1> <str2> .min <str> */
  117. private int
  118. zmin(register os_ptr op)
  119. {    int code = obj_le(op - 1, op);
  120.     if ( code < 0 ) return code;
  121.     if ( !code )
  122.        {    ref_assign(op - 1, op);
  123.        }
  124.     pop(1);
  125.     return 0;
  126. }
  127.  
  128. /* <bool1> <bool2> and <bool> */
  129. /* <int1> <int2> and <int> */
  130. private int
  131. zand(register os_ptr op)
  132. {    switch ( r_type(op) )
  133.        {
  134.     case t_boolean:
  135.         check_type(op[-1], t_boolean);
  136.         op[-1].value.boolval &= op->value.boolval;
  137.         break;
  138.     case t_integer:
  139.         check_type(op[-1], t_integer);
  140.         op[-1].value.intval &= op->value.intval;
  141.         break;
  142.     default:
  143.         return_op_typecheck(op);
  144.        }
  145.     pop(1);
  146.     return 0;
  147. }
  148.  
  149. /* <bool> not <bool> */
  150. /* <int> not <int> */
  151. private int
  152. znot(register os_ptr op)
  153. {    switch ( r_type(op) )
  154.        {
  155.     case t_boolean:
  156.         op->value.boolval = !op->value.boolval;
  157.         break;
  158.     case t_integer:
  159.         op->value.intval = ~op->value.intval;
  160.         break;
  161.     default:
  162.         return_op_typecheck(op);
  163.        }
  164.     return 0;
  165. }
  166.  
  167. /* <bool1> <bool2> or <bool> */
  168. /* <int1> <int2> or <int> */
  169. private int
  170. zor(register os_ptr op)
  171. {    switch ( r_type(op) )
  172.        {
  173.     case t_boolean:
  174.         check_type(op[-1], t_boolean);
  175.         op[-1].value.boolval |= op->value.boolval;
  176.         break;
  177.     case t_integer:
  178.         check_type(op[-1], t_integer);
  179.         op[-1].value.intval |= op->value.intval;
  180.         break;
  181.     default:
  182.         return_op_typecheck(op);
  183.        }
  184.     pop(1);
  185.     return 0;
  186. }
  187.  
  188. /* <bool1> <bool2> xor <bool> */
  189. /* <int1> <int2> xor <int> */
  190. private int
  191. zxor(register os_ptr op)
  192. {    switch ( r_type(op) )
  193.        {
  194.     case t_boolean:
  195.         check_type(op[-1], t_boolean);
  196.         op[-1].value.boolval ^= op->value.boolval;
  197.         break;
  198.     case t_integer:
  199.         check_type(op[-1], t_integer);
  200.         op[-1].value.intval ^= op->value.intval;
  201.         break;
  202.     default:
  203.         return_op_typecheck(op);
  204.        }
  205.     pop(1);
  206.     return 0;
  207. }
  208.  
  209. /* <int> <shift> bitshift <int> */
  210. private int
  211. zbitshift(register os_ptr op)
  212. {    int shift;
  213.     check_type(*op, t_integer);
  214.     check_type(op[-1], t_integer);
  215. #define max_shift (arch_sizeof_long * 8 - 1)
  216.     if ( op->value.intval < -max_shift || op->value.intval > max_shift )
  217.         op[-1].value.intval = 0;
  218. #undef max_shift
  219.     else if ( (shift = op->value.intval) < 0 )
  220.         op[-1].value.intval = ((ulong)(op[-1].value.intval)) >> -shift;
  221.     else
  222.         op[-1].value.intval <<= shift;
  223.     pop(1);
  224.     return 0;
  225. }
  226.  
  227. /* ------ Extensions ------ */
  228.  
  229. /* <obj1> <obj2> .identeq <bool> */
  230. private int
  231. zidenteq(register os_ptr op)
  232. {    register os_ptr op1 = op - 1;
  233.     eq_check_read(op1, check_op(2));
  234.     eq_check_read(op, DO_NOTHING);
  235.     make_bool(op1, (obj_ident_eq(op1, op) ? 1 : 0));
  236.     pop(1);
  237.     return 0;
  238.  
  239. }
  240.  
  241. /* <obj1> <obj2> .identne <bool> */
  242. private int
  243. zidentne(register os_ptr op)
  244. {    /* We'll just be lazy and use .identeq. */
  245.     int code = zidenteq(op);
  246.     if ( !code ) op[-1].value.boolval ^= 1;
  247.     return code;
  248. }
  249.  
  250. /* ------ Initialization procedure ------ */
  251.  
  252. BEGIN_OP_DEFS(zrelbit_op_defs) {
  253.     {"2and", zand},
  254.     {"2bitshift", zbitshift},
  255.     {"2eq", zeq},
  256.     {"2ge", zge},
  257.     {"2gt", zgt},
  258.     {"2le", zle},
  259.     {"2lt", zlt},
  260.     {"2.max", zmax},
  261.     {"2.min", zmin},
  262.     {"2ne", zne},
  263.     {"1not", znot},
  264.     {"2or", zor},
  265.     {"2xor", zxor},
  266.         /* Extensions */
  267.     {"2.identeq", zidenteq},
  268.     {"2.identne", zidentne},
  269. END_OP_DEFS(0) }
  270.  
  271. /* ------ Internal routines ------ */
  272.  
  273. /* Compare two operands (both numeric, or both strings). */
  274. /* Return 1 if op[-1] <= op[0], 0 if op[-1] > op[0], */
  275. /* or a (negative) error code. */
  276. #define bval(v) ((v) ? 1 : 0)
  277. private int near
  278. obj_le(register os_ptr op1, register os_ptr op)
  279. {    switch ( r_type(op1) )
  280.       {
  281.       case t_integer:
  282.         switch ( r_type(op) )
  283.           {
  284.           case t_integer:
  285.         return bval(op1->value.intval <= op->value.intval);
  286.           case t_real:
  287.         return bval((double)op1->value.intval <= op->value.realval);
  288.           default:
  289.         return_op_typecheck(op);
  290.           }
  291.       case t_real:
  292.         switch ( r_type(op) )
  293.           {
  294.           case t_real:
  295.         return bval(op1->value.realval <= op->value.realval);
  296.           case t_integer:
  297.         return bval(op1->value.realval <= (double)op->value.intval);
  298.           default:
  299.         return_op_typecheck(op);
  300.           }
  301.       case t_string:
  302.         check_read(*op1);
  303.         check_read_type(*op, t_string);
  304.         return bval(bytes_compare(op1->value.bytes, r_size(op1),
  305.                       op->value.bytes, r_size(op)) <= 0);
  306.       default:
  307.         return_op_typecheck(op1);
  308.       }
  309. }
  310. #undef bval
  311.